home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / utils / cache / default.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  439 b   |  23 lines

  1. /*
  2.  * default.c --
  3.  *    POSTGRES tunable defaults code.
  4.  *
  5.  * Note:
  6.  *    The intention is for this file to implement access to the special
  7.  * DEFAULTS relation.
  8.  */
  9.  
  10. #include "tmp/c.h"
  11.  
  12. RcsId("$Header: /private/postgres/src/utils/cache/RCS/default.c,v 1.3 1990/09/25 16:50:39 kemnitz Exp $");
  13.  
  14. String        /* XXX Datum */
  15. FetchDefault(string, standard)
  16.     String    string;
  17.     String    standard;
  18. {
  19.     AssertArg(StringIsValid(string));
  20.  
  21.     return (standard);
  22. }
  23.